body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #f0f0f0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: white;
  border-bottom: 2px solid #eee;
}

.logo span {
  font-weight: bold;
  margin-left: 10px;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a.active {
  border-bottom: 3px solid #999;
}

.hero {
  background: url('banniere.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero h1 {
  background: white;
  color: #c2185b;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 24px;
}

.gallery {
  padding: 40px;
  background: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.info-section {
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 40px 20px;
}

.comments, .events {
  width: 45%;
}

.comments h2, .events h2 {
  color: #c2185b;
}

ul {
  padding-left: 20px;
}

.bottom-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #e91e63;
  color: white;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.bottom-section > div {
  flex: 1 1 300px;
  max-width: 500px;
}

.newsletter form {
  margin-top: 10px;
}

.newsletter input {
  padding: 10px;
  width: 70%;
  border: none;
  border-radius: 0px;
}

.newsletter button {
  padding: 10px 20px;
  margin-left: 10px;
  background: white;
  color: #e91e63;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

.socials h3 {
  margin-bottom: 10px;
}

.icons a {
  margin-right: 15px;
  font-size: 24px;
  color: white;
  text-decoration: none;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}

@media screen and (min-width: 980px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 20px;
    padding: 8px 16px;
  }

  .gallery {
    padding: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-section {
    padding: 20px 15px;
  }

  .bottom-section {
    padding: 20px 15px;
  }

  .newsletter p,
  .socials h3 {
    font-size: 16px;
  }

  .icons a {
    font-size: 20px;
    margin-right: 10px;
  }
}